Provides access to the Parse SDK
The extension is available here: com.distriqt.Parse
You should perform this once in your application. This initialises the extension using your application key. Note you should always check whether the extension is supported before making calls. This allows you to react to whether the functionality is available on the device.
try
{
Core.init();
Parse.init( APPLICATION_KEY );
if (Parse.isSupported)
{
// Functionality here
}
}
catch (e:Error)
{
trace( e );
}
You generate your application keys here: /user/applications
If you have any issues with the application key, check this FAQ